home *** CD-ROM | disk | FTP | other *** search
/ Champak 146 / (Vol 146) Jan 07 2012.iso / Games / tontie_hammer.swf / scripts / frame_6 / DoAction.as
Text File  |  2012-01-07  |  446b  |  33 lines

  1. function start_ok()
  2. {
  3.    _root.start_i += 1;
  4.    if(_root.start_i >= 9)
  5.    {
  6.       with(_root)
  7.       {
  8.          gotoAndStop("start");
  9.       }
  10.    }
  11. }
  12. function sound(se)
  13. {
  14.    if(_root.sound_on == 1)
  15.    {
  16.       with(soundm)
  17.       {
  18.          gotoAndPlay(se);
  19.       }
  20.    }
  21. }
  22. function sound2(se)
  23. {
  24.    if(_root.sound_on == 1)
  25.    {
  26.       with(sound_bgm)
  27.       {
  28.          gotoAndPlay(se);
  29.       }
  30.    }
  31. }
  32. _root.sound_on = 1;
  33.